div.Product_Container {
    display: flex;
    flex-direction: row;
    background-color: rgb(245, 245, 245);
    padding: 0px 10px;
    gap: 10px;
    width: auto;
    align-items: start;
}

div.Product_Image_Container {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    width: 100%;
    flex: 0.5;
    position: relative;
}

div.Product_Details_Container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

div.Product_Image_Slider {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    scrollbar-width: none;
    width: 100%;
}

div.Product_Image_Slider img {
    flex: 0 0 100%;
    width: 100px;
    height: auto;
    object-fit: contain;
    scroll-snap-align: center;
    /* overflow: scroll; */
}

button#ScrollLeft {
    position: absolute;
    top: 50%;
    left: 0%;
    z-index: 10;
    font-size: 30px;
    border: none;
    background-color: transparent;
}

button#ScrollRight {
    position: absolute;
    top: 50%;
    right: 0%;
    z-index: 10;
    font-size: 30px;
    border: none;
    background-color: transparent;
}

button#Full_Screen {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 10;
    width: auto;
}

span.MRP_Tag {
    text-align: center;
    color: black;
    display: none;
}

span.Price_Tag {
    text-align: center;
    color: orangered;
    font-size: 20px;
}

div.Order_Options {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
div.Order_Options span {
    color: green;
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    /* flex: 1;     */
}


div.Order_Options button {
    color: white;
    background-color: green;
    font-family: Arial;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 18px;
    padding: 5px;
    /* flex: 0; */
}

div.Order_Options button:hover {
    cursor: pointer;
}

div.Order_Options button:active {
    background-color: greenyellow;
    color: black;

}

div.Product_Details_Container #Product_Title {
    font-family: Arial;
    margin: 10px 0px;
}

div.Product_Details_Container ul {
    margin: 0;
    padding: 0px 15px;
}

div.Product_Details_Container ul li {
    margin: 0;
    margin-bottom: 15px;
}

.Share_Container {
    position: absolute;
    display: inline-block;
    right: 0%;
    /* margin-top: 10px; */
    margin-right: 10px;
    z-index: 1;
    width: 100px;
}

.Share_BTN {
    cursor: pointer;
    width: 100%;
    height: 20px;
    font-weight: bold;
}

.Share_Options {
    display: none;
    flex-direction: column;
    background-color: lightgray;
    padding: 5px;
}

.Share_Options a, .Share_Options button {
    display: block;
    cursor: pointer;
    width: auto;
    margin-top: 5px;
    color: blue;
}

.Share_Container:hover .Share_Options {
    display: none;
}

@media (max-width: 600px) {
    div.Product_Container {
        flex-direction: column;
        /* margin-bottom: 10%; */
        align-items: center;
        overflow: hidden;
    }

    div.Product_Image_Slider img {
        width: 100%;
    }
}

